A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
-bash/zsh: conky command not found #Debian apt-get install conky-cli #Ubuntu apt-get install conky-cli #Alpine apk add conky #Arch Linux pacman -S conky # query aur database $ yay -Ss conky #CentOS yum install epel-release.noarch -y 之后: yum install conky #Kali Linux apt-get install conky-cli #Fedora dnf install conky #Raspbian apt-get install conky-cli #FreeBSD #Conky is in ports in `sysutils/conky`. $ cd /usr/ports/sysutils/conky $ make install clean #Alternatively, install the binary package. $ pkg install conky #Gentoo Linux emerge conky #NixOS nix-env -i conky #Docker docker run cmd.cat/conky conky
Conky 可以显示 300 多个内置对象,包括对以下内容的支持:

Conky 可以将信息显示为文本,也可以使用简单的进度条和图形小部件(具有不同的字体和颜色)显示信息。



conky [ options ]
-v | -V | --version
Prints version and exits
-q | --quiet
Run Conky in 'quiet mode' (ie. no output)
-D | --debug
Increase debugging output, ie. -DD for more debugging
-a | --alignment= ALIGNMENT
Text alignment on screen, {top,bottom,middle}_{left,right,middle} or none. Can also be abbreviated with first chars of position, ie. tr for top_right.
-b | --double-buffer
Use double buffering (eliminates "flicker")
-c | --config= FILE
Config file to load instead of $HOME/.conkyrc
-C | --print-config
Print builtin default config to stdout. See also the section EXAMPLES for more information.
-d | --daemonize
Daemonize Conky, aka fork to background
-f | --font= FONT
Font to use
-h | --help
Prints command line help and exits
-o | --own-window
Create own window to draw
-t | --text= TEXT
Text to render, remember single quotes, like -t ' $uptime '
-p | --pause= SECONDS
Time to pause before actually starting Conky
-u | --interval= SECONDS
Update interval
-w | --window-id= WIN_ID
Window id to draw
-X | --display= DISPLAY
X11 display to use
-x X_COORDINATE
X position
-y Y_COORDINATE
Y position
-i COUNT
Number of times to update Conky (and quit)
conky 使用默认的内置配置启动:
conky
conky 创建一个新的默认配置:
conky -C > ~/.conkyrc
conky 使用给定的配置文件启动 conky:
conky -c path/to/config
conky 从后台启动(守护进程):
conky -d
在桌面上对齐 conky:
conky -a {top,bottom,middle}_{left,right,middle}
conky 启动前在启动时暂停 5 秒钟:
conky -p 5